home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19941221-19950208 / 000181_news@columbia.edu_Mon Jan 16 16:51:16 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04015
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 16 Jan 1995 11:51:22 -0500
  3. Received: by apakabar.cc.columbia.edu id AA25895
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 16 Jan 1995 11:51:20 -0500
  5. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  6. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: Disable internal commands?
  9. Date: 16 Jan 1995 16:51:16 GMT
  10. Organization: Columbia University
  11. Lines: 30
  12. Distribution: everyone
  13. Message-Id: <3fe864$p8v@apakabar.cc.columbia.edu>
  14. References: <Clotsche.95.2F1A62AC@coh.fgg.eur.nl>
  15. Nntp-Posting-Host: watsun.cc.columbia.edu
  16. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  17.  
  18. In article <Clotsche.95.2F1A62AC@coh.fgg.eur.nl>,
  19. P. CLOTSCHER @ COH <Clotsche@coh.fgg.eur.nl> wrote:
  20. >Is there a possibility to disable the (or some) internal Key-commands 
  21. >like Alt-X, Alt-=, Alt-Z, etc., while in connect mode (terminal 
  22. >emulation)?
  23. >
  24. Yes: SET KEY <scan-code> \Kignore
  25.  
  26. >I could re-define the keys of course, but a command like 
  27. >'disable ...' would be nicer.
  28. >
  29. Presently, there is no such command.
  30.  
  31. >Also the normal escape character ^] is on our wishlist for disabling.
  32. >
  33. You can change the escape character to any other (7-bit) control character,
  34. but there is no way to disable it entirely.
  35.  
  36. >Second question: Is it possible to use a DOS-environment variable in 
  37. >a script-file in the output command?
  38. >
  39. Yes, as explained in the manual, "Using MS-DOS Kermit":
  40.  
  41.  \$(name)
  42.  
  43. where "name" is the name of the desired environment variable, e.g.
  44.  
  45.   \$(GROUP)
  46.  
  47. - Frank